home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / Updates / AmigaOS3.5 / IPop / arexx_cmds.h next >
C/C++ Source or Header  |  2000-05-16  |  658b  |  22 lines

  1. #ifndef __AREXX_CMDS_H__
  2. #define __AREXX_CMDS_H__
  3.  
  4. #include <exec/types.h>
  5.  
  6. #include <classes/arexx.h>
  7.  
  8. #include "arexx.h"
  9.  
  10. struct ARexxCmd ARexxCommands[] =
  11. {
  12.    {  "CHECK",       REXX_CHECK,       rexx_Check,       "TIME/N,", NULL, },
  13.    {  "QUIET",       REXX_QUIET,       rexx_Quiet,       ",",     NULL, },
  14.    {  "VERSION",     REXX_VERSION,     rexx_Version,     ",",     NULL, },
  15.    {  "QUIT",        REXX_QUIT,        rexx_Quit,        ",",     NULL, },
  16.    {  "AUTHOR",      REXX_AUTHOR,      rexx_Author,      ",",     NULL, },
  17.    {  "WAITING",     REXX_WAITING,     rexx_Waiting,     ",",     NULL, },
  18.    {NULL,},
  19. };
  20.  
  21. #endif /* __AREXX_CMDS_H__ */
  22.